home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_02_08 / 2n08068a < prev    next >
Encoding:
Text File  |  1991-06-29  |  164 b   |  14 lines

  1. int find(const char *s)
  2.     {
  3. #ifdef DEBUG
  4.     fprintf(stderr, "entering find\n");
  5. #endif
  6.  
  7.     ...
  8.  
  9. #ifdef DEBUG
  10.     fprintf(stderr, "leaving find\n");
  11. #endif
  12.     }
  13.  
  14.